Skip to content

Conversation

@soundproofboot
Copy link

Issue number: resolves ionic-team#29763


What is the current behavior?

In Angular, if the nested content of an ion-item is initially not interactive but is then swapped out for an input or other interactive element, a render is not triggered and the item does not behave correctly for one or more nested inputs.

What is the new behavior?

-A mutation observer is used to watch for changes in nested content and reset two pieces of state that track whether the item needs to be interactive and whether there are multiple interactive elements.

Does this introduce a breaking change?

  • Yes
  • [ X] No

Other information

A MutationObserver is used so that if the children of the item are rendered conditionally, when they are swapped out the component checks again to determine whether the item needs to gain or lose interactivity and updates state accordingly, causing a render if isInteractive or multipleInputs changes state. I opted for the MutationObserver over a 'slotchange' listener because the slotchange fires synchronously on any slot within the shadowRoot, and the MutationObserver fires once.

@soundproofboot
Copy link
Author

PR to framework repo

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

bug: conditional appearance of the content of an ion-item prevent click on right and left edge of the ion-item (with checkbox)

1 participant